YakYak est un logiciel gratuit, multiplateforme (Windows/Mac/Linux) permettant de chatter, téléphoner et faire de la visioconférence.

====== Installation ======
===== Installation en ligne de commande =====
Note : par défaut, ce script installe YakYak dans le dossier home : /home/<monCompte>

	cd /opt
	
	#Detect 32 or 64 bit version
	uname -m | grep 686 > /dev/null
	if [ $? -ne 1 ]; then
		# 32 bit OS
		httpFolder=https://github.com/yakyak/yakyak/releases/download/v0.2.0/
		installationFile=yakyak-linux-ia32.zip
	else		
		# 64 bit OS
		httpFolder=https://github.com/yakyak/yakyak/releases/download/v0.2.0/
		installationFile=yakyak-linux-x64.zip
	fi

	wget $httpFolder/$installationFile
	unzip $installationFile
	rm $installationFile